﻿ul {
    list-style: none;
    padding-left: 0;
}
/*CONTENIDO*/
#home-contenido {
    border-radius: 10px;
    background-color: white !important;
    padding: 2rem;
}

#contenido {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/*INFORMES*/
#informes {
    margin-top: 2rem;
    margin-left: -05px;
}

#home-informes {
    border-radius: 10px;
    padding: 10px;
    background-color: white !important;
}

#home-descargas {
    border-radius: 10px;
    padding: 10px;
    background-color: white !important;
    margin-top:1rem;
    margin-bottom:1rem;
}

.color {
    background-color: #559C52;
    padding: 5px;
    border-radius: 10px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center; /* Centra verticalmente */
    justify-content: center; /* Centra horizontalmente */
}

/*Descargas*/

.descarga {
    display: block; /* Que ocupe todo el ancho posible */
    padding: 10px 15px; /* Espacio interno para la franja */
    color: inherit; /* Color texto por defecto */
    text-decoration: none; /* Sin subrayado */
    background-color: transparent;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    transition: all 0.3s ease;
}


/* Hover: cuando pasas el mouse */
.descarga:hover {
    background-color: rgba(85, 156, 82, 0.2); /* Fondo verde */
    color: #559C52 !important; /* Texto verde claro (ajusta como quieras) */
    border-left-color: #559C52 !important; /* Franja verde oscura izquierda */
    border-right-color: #559C52 !important; /* Franja verde oscura derecha */
}

    /* Para que el texto <p> tome el color del enlace */
    .descarga:hover p {
        color: #559C52 !important;
    }

    /* Para que el ícono también cambie */
    .descarga:hover i {
        color: #559C52 !important;
    }

a {
    text-decoration: none;
}


@media (min-width: 200px) and (max-width: 900px) {
    #home-contenido {
        height: auto;
        border-radius: 10px;
        background-color: white !important;
        padding: 2rem;
        height: auto;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    #home-contenido {
        height: auto;
        border-radius: 10px;
        background-color: white !important;
        padding: 2rem;
        height: 870px;
    }
}

@media (min-width: 1200px) and (max-width: 2399px) {
    #home-contenido {
        height: auto;
        border-radius: 10px;
        background-color: white !important;
        padding: 2rem;
        height: 750px;
    }
}

a.descarga:link,
a.descarga:visited {
    color: black;
    text-decoration: none; /* quita el subrayado si no lo quieres */
}